executeShellAt

Execute the given shell comamnd at the given directory

@trusted
void
executeShellAt
(
scope const(char)[] command
,
scope const(char)[] cwd = buildNormalizedPath(__FILE_FULL_PATH__).dirName()
,
scope const string[string] env = null
,
bool debugInfo = false
)

Parameters

command const(char)[]

the given shell comamnd as a string

cwd const(char)[]

the given directory comamnd as a string (by default it is the directory at which this file exists)

Return Value

Type: void

the result of waiting the process

Meta